home *** CD-ROM | disk | FTP | other *** search
/ Most Valuable Games 2 / Most Valuable Games Volume 2 (MVP Publishing)(August 1995).iso / setup / ddrive.exe / START.BAT < prev    next >
DOS Batch File  |  1995-07-25  |  425b  |  22 lines

  1. cls
  2. echo off
  3. echo This file will copy the game cheat program to your 'C' hard disk.
  4. echo After you run it, you will be given the option of removing it from your
  5. echo hard drive. Just answer 'yes' to the delete question.
  6.  
  7. choice /c:yn Go ahead with the copy to hard drive?
  8. if errorlevel 2 goto end
  9. if errorlevel 1 goto copy
  10. goto end
  11.  
  12. :copy
  13. xcopy *.* c:\cheat\
  14. c:
  15. cd \cheat
  16. cheat
  17.  
  18. cd..
  19. deltree cheat
  20.  
  21. :end
  22.